-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make the transit networks time aware #83
Conversation
This is to be able to include the active stops within a time interval after the end of the specified time range.
Added argument in create transit and route_type_to_edge functions.
+ adding documentation
It's unclear to me why checks on my commits keep on failing. Is it a PEP8 issue? It seems like all other tests pass. @sablanchard @smmaurer |
@bouzaghrane Yup, looks like just PEP8/pycodestyle. Here are the lines that get flagged: You can do |
Looks like the checks passed for all but python 3.5. Wondering why.. |
It looks like an installation problem that's unrelated to these changes -- Conda doesn't find Python 3.5-compatible versions of the dependencies, so the tests can't continue. I'll work on diagnosing this, and we can either patch the Travis script or switch over to GitHub Actions like we've done for Pandana, ChoiceModels, and UrbanSim Templates.. |
Hi @sablanchard and @bouzaghrane! Sam, Amine mentioned that this is ready for review. Thanks Amine!! The changes in this PR are to the There are a couple of reasons for the first addition. Including schedule times allows us to create a single large integrated network that we can later break into time-of-day segments on the fly as needed. It also paves the way to potentially include trip schedules in the routing itself. The reasoning behind Feedback from me:
@sablanchard, any additional feedback from your side? |
Working with @bouzaghrane offline we decided to implement the functionality in this PR in a different way in this new PR: #87 thus this PR is superseded by #87 and will be closed. |
What
This PR is to add capability to create time-aware urbanaccess transit and walk networks.